(0) Obligation:

Runtime Complexity TRS:
The TRS R consists of the following rules:

a__app(nil, YS) → mark(YS)
a__app(cons(X, XS), YS) → cons(mark(X), app(XS, YS))
a__from(X) → cons(mark(X), from(s(X)))
a__zWadr(nil, YS) → nil
a__zWadr(XS, nil) → nil
a__zWadr(cons(X, XS), cons(Y, YS)) → cons(a__app(mark(Y), cons(mark(X), nil)), zWadr(XS, YS))
a__prefix(L) → cons(nil, zWadr(L, prefix(L)))
mark(app(X1, X2)) → a__app(mark(X1), mark(X2))
mark(from(X)) → a__from(mark(X))
mark(zWadr(X1, X2)) → a__zWadr(mark(X1), mark(X2))
mark(prefix(X)) → a__prefix(mark(X))
mark(nil) → nil
mark(cons(X1, X2)) → cons(mark(X1), X2)
mark(s(X)) → s(mark(X))
a__app(X1, X2) → app(X1, X2)
a__from(X) → from(X)
a__zWadr(X1, X2) → zWadr(X1, X2)
a__prefix(X) → prefix(X)

Rewrite Strategy: FULL

(1) DecreasingLoopProof (EQUIVALENT transformation)

The following loop(s) give(s) rise to the lower bound Ω(2n):
The rewrite sequence
mark(app(from(X36060_0), X2)) →+ a__app(cons(mark(mark(X36060_0)), from(s(mark(X36060_0)))), mark(X2))
gives rise to a decreasing loop by considering the right hand sides subterm at position [0,0,0].
The pumping substitution is [X36060_0 / app(from(X36060_0), X2)].
The result substitution is [ ].

The rewrite sequence
mark(app(from(X36060_0), X2)) →+ a__app(cons(mark(mark(X36060_0)), from(s(mark(X36060_0)))), mark(X2))
gives rise to a decreasing loop by considering the right hand sides subterm at position [0,1,0,0].
The pumping substitution is [X36060_0 / app(from(X36060_0), X2)].
The result substitution is [ ].

(2) BOUNDS(2^n, INF)